home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / RCS / ConfuseMore.h,v < prev    next >
Encoding:
Text File  |  1992-08-18  |  749 b   |  68 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dglattin:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    92.08.18.04.58.04;    author dglattin;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @test code.
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @#ifndef __CONFUSEMORE_H
  26. #define __CONFUSEMORE_H
  27.  
  28. #include  <SubClass1.h>
  29. #include  <SubClass2.h>
  30. #include  <SubClass3.h>
  31.  
  32.  
  33. @@interface SubClass1 (Fifth_Test)
  34.  
  35. - additionalMethod1; /* Intentional conflict. */
  36. - additionalMethod_2;
  37.  
  38. @@end
  39.  
  40.  
  41. @@interface SubClass2 (Third_Test)
  42.  
  43. - additionalMethod_1;
  44. - additionalMethod_2;
  45. - additionalMethod_3;
  46.  
  47. @@end
  48.  
  49.  
  50. @@interface SubClass3 (Second_Test)
  51.  
  52. + additionalClassMethodTwo;
  53. - additionalMethod_1a;
  54. - additionalMethod_2a;
  55.  
  56. @@end
  57.  
  58.  
  59. @@interface SubClass1 (Sixth_Test)
  60.  
  61. - additionalMethod_3;
  62.  
  63. @@end
  64.  
  65.  
  66. #endif
  67. @
  68.